home *** CD-ROM | disk | FTP | other *** search
/ Programming Windows 95 / Programming Windows 95.iso / code / CHAP12 / CTLMACRO.MAK < prev    next >
Encoding:
Text File  |  1996-01-01  |  588 b   |  20 lines

  1. #-----------------------
  2. # CTLMACRO.MAK make file
  3. #-----------------------
  4.  
  5. ctlmacro.exe : ctlmacro.obj notify.obj treeview.obj ctlmacro.res
  6.      $(LINKER) $(GUIFLAGS) -OUT:ctlmacro.exe ctlmacro.obj \
  7.      notify.obj treeview.obj ctlmacro.res $(GUILIBS)
  8.  
  9. ctlmacro.obj : ctlmacro.c notify.h resource.h treeview.h
  10.      $(CC) $(CFLAGS) ctlmacro.c
  11.  
  12. notify.obj : notify.c notify.h
  13.      $(CC) $(CFLAGS) notify.c
  14.  
  15. treeview.obj : treeview.c resource.h treeview.h treedata.h
  16.      $(CC) $(CFLAGS) treeview.c
  17.  
  18. ctlmacro.res : ctlmacro.rc ctlmacro.ico
  19.      $(RC) $(RCVARS) ctlmacro.rc
  20.